	 body {
            font-family: 'Open Sans', sans-serif;
            background-color: #F2F2F2;
         }

         #pageWrapper {
            width: 1000px;
         }

            .headerImage {
               margin: 10px;
               clear:both;
            }

            #mainMenuBar {
               width:100%;
               float:left;
               clear:both;

               font-family: 'Dosis', sans-serif;
               font-size: 22px;
               background-color: #96c997;
               border-radius: 5px; /* Rounded edges on the menu box */
               padding: 5px 0;
               margin-bottom: 10px; /* Empty space under the menu bar */
            }

            #mainMenuBar li {
               padding: 15px 15px 0 0; /* The gap between menu items */
               display: inline;
               list-style: none;
            }

               #mainMenuBar li a {
                  color: #232323;
                  -o-transition:.2s;
                  -ms-transition:.2s;
                  -moz-transition:.2s;
                  -webkit-transition:.2s;
                  transition:.2s;
               }

               #mainMenuBar li a:hover {
                  text-shadow: 0px 0px 6px #94FF70;
                  text-decoration: none;
                  color: #EFFFEF;
                  -o-transition:.2s;
                  -ms-transition:.2s;
                  -moz-transition:.2s;
                  -webkit-transition:.2s;
                  transition:.2s;
               }

            #pageContentWrapper {
               float:left;
               clear: both;
               background-color: white;
               border-radius: 5px; /* Rounded edges on the menu box */

            }
               #pageContent {
                  padding: 20px;
               }

               /* GENERAL HEADERS */
               #pageContent h1 {
                  float: left;
                  clear:both;
                  color: #232323;
                  padding: 6px 0;
                  margin-bottom: 3px;
                  text-align: left;
                  text-decoration: none;
                  font-family: 'Dosis', sans-serif;
                  border-bottom: solid 2px #232323;
               }

               /* GENERAL PARAGRAPHS */
               #pageContent p{
                  float:left;
                  padding: 0;
                  margin: 0;
                  text-align: left;
               }
               /* GENERAL LISTS */
               #pageContent ul {

                  list-style: disc;
                  padding: 0;
                  margin: 0;
                  margin-left: 40px;
                  float: left;
                  clear: both;
                  line-height: 18px;
               }
               #pageContent li {
                  padding: 0;
                  margin: 0;
                  text-align: left;
               }

               /* GENERAL IMAGES */
               .floatLeft{
                  float: left;
                  padding: 5px;
                  padding-left: 0;
               }

               .floatRight{
                  float: right;
                  padding: 5px;
                  padding-right: 0;
               }